home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 1146 / 1146.xpi / chrome / screengrab.jar / content / Overlay.js < prev    next >
Text File  |  2009-03-09  |  247b  |  7 lines

  1. screengrab.ImageOverlay = function() {}
  2. screengrab.ImageOverlay.prototype = {
  3.     overlay: function() {
  4.         this.canvas = document.createElementNS("http://www.w3.org/1999/xhtml", "html:canvas");
  5.         this.context = this.canvas.getContext("2d");
  6.     }
  7. }